372c9d45779fa176de821a5c590ff05170cd87d9,jldap-provider/src/main/java/org/ldaptive/provider/jldap/JLdapProvider.java,JLdapProvider,getJLdapStartTLSConnectionFactory,#ConnectionConfig#LDAPConstraints#,60

Before Change


        cc.getConnectionStrategy(),
        config,
        constraints != null ? constraints : getDefaultLDAPConstraints(cc),
        (int) cc.getResponseTimeout(),
        config.getSslSocketFactory() != null ? config.getSslSocketFactory() : getHostnameVerifierSocketFactory(cc));
  }

After Change


        cc.getConnectionStrategy(),
        config,
        constraints != null ? constraints : getDefaultLDAPConstraints(cc),
        cc.getResponseTimeout(),
        config.getSslSocketFactory() != null ? config.getSslSocketFactory() : getHostnameVerifierSocketFactory(cc));
  }